
/* Brown: #51423D */
/* Beige: #968170 */
/* Dark brown: #435045 */
/* Green: #383B28 */
/* Pink: #E808CA */
/*Yellow: #E9D899 */

:root {
  color-scheme: light;
}





/* Map */
#map {
  display:flex; 
  margin:0px;
  justify-content: center;

}

#map-shadow {
    box-shadow: #1d1815;
}

/*Comic*/

.comic {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 40px auto;
  width: 100%;
}

.comic img {
  width: 50%;
  height: auto;
  transition: width 0.3s ease-in-out;
  max-width: 100%;
}

/* Map default */
#map {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  width: 100%;
  padding: 60px 0px;
}

#map img {
  width: 50%;
  height: auto;
  transition: width 0.3s ease-in-out;
  max-width: 100%;
}

.bottom {
    padding-bottom: 20px;
}

/* Support section */

#support {
    font-family: cursive;
    color:antiquewhite;
}

#support:hover {
    color:#E9D899;
    cursor: pointer;
}

.foot-box {
    display:flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 40px;
}

.container2 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 20px 0 40px 0; /* top + bottom margin spacing */
}

.support {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px 35px;
    border-radius: 12px;
    transition: all 0.3s ease-in-out;
    gap: 10px;
    margin: 0 auto;               /* centers it horizontally */
    max-width: fit-content;       /* keeps button compact and centered */
}

.support:hover {
    background-color: #968170;
    transform: scale(1.05);       /* subtle “button grow” effect */
}

#smalldeco {
    height: 40px;
    margin: 0;
    padding: 0;
    vertical-align: middle;
}


/* ----------------------------
   RESPONSIVE BREAKPOINTS
---------------------------- */

/* comic */
/* Large tablets / small desktops (≤1000px) */
@media screen and (max-width: 1000px) {
  .comic img {
      width: 70%;
  }
  #map img {
      width: 65%;
  }
}

/* Tablets (≤800px) — map hits edges here */
@media screen and (max-width: 800px) {
  .comic img {
      width: 90%;
  }
  #map img {
      width: calc(100% - 10px); /* nearly edge-to-edge */
  }
}

/* Mobile (≤480px) — comic nearly edge-to-edge */
@media screen and (max-width: 480px) {
  .comic {
      margin: 20px 0;
      padding: 0;
  }
  .comic img {
      width: calc(100% - 8px); /* about 4px margin each side */
  }
  #map img {
      width: calc(100% - 8px); /* keep matching edge look */
  }
}


/* other stuff */
/* Large tablets / small desktops (≤1000px) */
@media screen and (max-width: 1000px) {
  .chapter-box {
      padding: 5px 40px;
  }
}

/* Tablets (≤800px) */
@media screen and (max-width: 800px) {
  .top-bar {
      flex-direction: column;
      height: auto;
  }

  #Chapter {
   padding: 1px;
  }

  #Title {
    padding: 1px;
  }

  .chapter-box {
      padding: 5px 25px;
      font-size: 0.95em;
  }

  #Title h2 {
      font-size: 1.2em;
  }
}

/* Mobile (≤480px) */
@media screen and (max-width: 480px) {
  body {
      background-size: cover;
  }

  .top-bar {
      flex-direction: column;
      text-align: center;
      padding: 10px;
  }

  #Title h2 {
      font-size: 1.1em;
  }

  .head {
      font-size: 0.9em;
      margin: 10px 0;
  }

  .chapter-box {
      margin: 30px 10px;
      padding: 5px 15px;
      font-size: 0.9em;
  }

  .nav-btn span {
      font-size: 1.4em;
  }

  .support {
      width: 100%;
      font-size: 1em;
  }
}

.footer {
    padding: 20px 20px;
    margin: 0px;
    background-color: #201A18;
}

#copyright {
  font-size: 0.7em;
  text-align: center;
   color: #B19F90;
}